home *** CD-ROM | disk | FTP | other *** search
- Path: grimsel.zurich.ibm.com!usenet
- From: Keith Whittingham <wgk@zurich.ibm.com>
- Newsgroups: comp.lang.c++
- Subject: Template implementation - code size efficiency..
- Date: Tue, 16 Apr 1996 14:58:18 -0700
- Organization: IBM Zurich Research Laboratory
- Message-ID: <317417FA.5607@zurich.ibm.com>
- NNTP-Posting-Host: pine.zurich.ibm.com
- Mime-Version: 1.0
- Content-Type: text/plain; charset=us-ascii
- Content-Transfer-Encoding: 7bit
- X-Mailer: Mozilla 2.01 (Win16; I)
-
- Is there a rule of thumb regarding the code size overhead
- for the use of a given template... Does
-
- Array<unsigned int> aui;
- Array<signed int> asi;
-
- produce twice as much executable code as...
-
- Array<signed int> asi;
-
- Can the compiler optimise...
-
- --
- Keith Whittingham
- wgk@zurich.ibm.com
-